home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Programming / OUI / include / gadgets / rcs / imgbut.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  1.2 KB  |  84 lines

  1. head    1.2;
  2. access;
  3. symbols;
  4. locks
  5.     dlorre:1.2; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.2
  10. date    97.07.14.04.27.05;    author dlorre;    state Exp;
  11. branches;
  12. next    1.1;
  13.  
  14. 1.1
  15. date    96.08.22.02.06.07;    author dlorre;    state Exp;
  16. branches;
  17. next    ;
  18.  
  19.  
  20. desc
  21. @Oui.lib -- Object User Interface
  22. Projet créé en 1994
  23. Auteur: Dominique Lorre
  24. @
  25.  
  26.  
  27. 1.2
  28. log
  29. @*** empty log message ***
  30. @
  31. text
  32. @// $Id$
  33. #ifndef CLASS_IMGBUT_H
  34. #define CLASS_IMGBUT_H
  35.  
  36. #ifndef EXEC_TYPES_H
  37. #include <exec/types.h>
  38. #endif
  39.  
  40. #ifndef INTUITION_INTUITION_H
  41. struct Image ;
  42. #endif
  43.  
  44. #ifndef CLASS_WINDOW_H
  45. class window ;
  46. #endif
  47.  
  48. #ifndef CLASS_GADGETLIST_H
  49. class gadgetlist ;
  50. #endif
  51.  
  52. #ifndef CLASS_GADGET_H
  53. #include "gadgets/gadget.h"
  54. #endif
  55.  
  56. // ========================================================================
  57. // ============================  IMGBUT CLASS =============================
  58. // ========================================================================
  59.  
  60.  
  61. class imgbut : public gadget
  62. {
  63. public:
  64.     imgbut(gadgetlist *gl,
  65.            void (window::*func)(gadget *, unsigned long, unsigned short),
  66.            Image *image,
  67.            Image *box) ;
  68.     ~imgbut() ;
  69.     void select(short) ;
  70. };
  71.  
  72.  
  73. #endif
  74. @
  75.  
  76.  
  77. 1.1
  78. log
  79. @Initial revision
  80. @
  81. text
  82. @d1 1
  83. @
  84.